/* Custom styles styling for Premium Luxury Visual Experience */

body {
    background-color: #0a0908;
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Cinzel', 'Playfair Display', serif;
}

/* Premium radial gradient backgrounds simulating depth */
.bg-radial-gradient {
    background: radial-gradient(circle at center, rgba(194, 89, 63, 0.15) 0%, rgba(223, 177, 91, 0.05) 50%, transparent 100%);
}

/* Luxury transitions and border glows */
.border-stone-850 {
    border-color: rgba(43, 39, 36, 0.8);
}

/* Hide scrollbars but preserve functionality */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #0a0908;
}
::-webkit-scrollbar-thumb {
    background: #c2593f;
    border-radius: 0px;
}
::-webkit-scrollbar-thumb:hover {
    background: #dfb15b;
}

/* Custom interactive input focus overrides */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 10px rgba(223, 177, 91, 0.15);
}

/* CSS variables transition speed */
* {
    transition-property: background-color, border-color, text-color, fill, stroke, opacity, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 250ms;
}
